home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / virus / safe11.7 / installsafe < prev    next >
Text File  |  1999-11-29  |  2KB  |  58 lines

  1. ;Installation script for Safe v11.7
  2.  
  3. (set PAR1 "")
  4. (set PAR2 "")
  5.  
  6. (set YEP "Yes")
  7. (set NOP "No")
  8. (set NEED "Safe needs OS2.0+ !\n")
  9. (set WELC "\n\n\n\nWelcome to Safe v11.7 Installation Script.\n(c)1998-1999 by Zbigniew `Zeeball` Trzcionkowski\n\nThis script installs only Safe file\nand adds it to user-startup!")
  10. (set WHER "Please select a place where you want to install Safe.")
  11. (set WHLP "Where do you want to have this!")
  12. (set CPNG "Copying Safe into ")
  13. (set ADDG "Adding Safe to \"S:User-Startup\".")
  14. (set AHLP "To check the system on startup!")
  15. (set QES1 "\n\n\nDo You want TCP Patch?")
  16. (set Q1HE "To detect activity of trojans/viruses that opens remote shells in TCP: device.")
  17. (set QES2 "\n\n\nDo You want Ram disk: renamer?")
  18. (set Q2HE "Renaming Ram disk: to RAM: that helps with some programs.")
  19.  
  20. (if (= @language "polski")
  21. (
  22. (set YEP "Tak")
  23. (set NOP "Nie")
  24. (set NEED "Safe potrzebuje OS2.0+ !\n")
  25. (set WELC "\n\n\n\nWitaj w skrypcie instalacyjnym programu Safe v11.7!\n(c)1998-1999 by Zbigniew `Zeeball` Trzcionkowski\n\nTen skrypt instaluje tylko plik Safe-a\ni dodaje go do user-startup!")
  26. (set WHER "Proszë wybraê miejsce, gdzie ma byê zainstalowany Safe.")
  27. (set WHLP "Gdzie go chcesz mieê!")
  28. (set CPNG "Kopiujë Safe-a do ")
  29. (set ADDG "Dodajë Safe-a do \"S:User-Startup\".")
  30. (set AHLP "Ûeby sprawdziê system na starcie!")
  31. (set QES1 "\n\n\nCzy chcesz TCP Patch?")
  32. (set Q1HE "Aby wykryê dziaîalnoôê wirusów/trojanów, które tworzâ zdalne shelle w urzâdzeniu TCP:")
  33. (set QES2 "\n\n\nCzy chcesz Ram disk: renamer?")
  34. (set Q2HE "Zmiana nazwy Ram disk: na RAM:, co pomaga przy pracy z niektórymi programami.")
  35. ))
  36.  
  37. (set app-name "Safe v11.7")
  38.  
  39. (if(<(/(getversion)65536)37)(abort NEED))
  40.  
  41. (complete 0)
  42.  
  43. (message (cat WELC))
  44.  
  45. (set dirk (askdir (prompt WHER) (help WHLP) (default "C:")))(set @default-dest dirk)
  46.  
  47. (copyfiles (prompt CPNG dirk) (source "safe") (dest dirk))
  48.  
  49. (complete 50)
  50.  
  51. (if(askbool(prompt QES1)(help Q1HE)(choices YEP NOP))(set PAR1 " TCPPATCH"))
  52.  
  53. (if(askbool(prompt QES2)(help Q2HE)(choices YEP NOP))(set PAR2 " RENRAM"))
  54.  
  55. (startup "Safe" (prompt    ADDG) (help AHLP) (command ("%sSafe%s%s" dirk PAR1 PAR2)))
  56.  
  57. (complete 100)
  58.